home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / httrack.c < prev    next >
C/C++ Source or Header  |  2005-06-11  |  21KB  |  663 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsshow.c console progress info                        */
  34. /* Only used on Linux version                                   */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifndef _WIN32
  39. #ifndef Sleep
  40. #define Sleep(a) { if (((a)*1000)%1000000) usleep(((a)*1000)%1000000); if (((a)*1000)/1000000) sleep(((a)*1000)/1000000); }
  41. #endif
  42. #endif
  43.  
  44. #include "httrack-library.h"
  45.  
  46. #include "htsglobal.h"
  47. #include "htsbase.h"
  48. #include "htsopt.h"
  49. #include "httrack.h"
  50.  
  51. /* Static definitions */
  52. static int fexist(char* s);
  53. static int linput(FILE* fp,char* s,int max);
  54.  
  55.  
  56. // htswrap_add
  57. #include "htswrap.h"
  58.  
  59. #if HTS_ANALYSTE_CONSOLE
  60.  
  61. /* specific definitions */
  62. //#include "htsbase.h"
  63. #include <stdio.h>
  64. #include <stdlib.h>
  65. #include <string.h>
  66. #ifdef HAVE_SYS_TYPES_H
  67. #include <sys/types.h>
  68. #endif
  69. #ifdef HAVE_SYS_STAT_H
  70. #include <sys/stat.h>
  71. #endif
  72. #ifdef HAVE_UNISTD_H
  73. #include <unistd.h>
  74. #endif
  75. #include <ctype.h>
  76. /* END specific definitions */
  77.  
  78. // ISO VT100/220 definitions
  79. #define VT_COL_TEXT_BLACK    "30"
  80. #define VT_COL_TEXT_RED      "31"
  81. #define VT_COL_TEXT_GREEN    "32"
  82. #define VT_COL_TEXT_YELLOW   "33"
  83. #define VT_COL_TEXT_BLUE     "34"
  84. #define VT_COL_TEXT_MAGENTA  "35"
  85. #define VT_COL_TEXT_CYAN     "36"
  86. #define VT_COL_TEXT_WHITE    "37"
  87. #define VT_COL_BACK_BLACK    "40"
  88. #define VT_COL_BACK_RED      "41"
  89. #define VT_COL_BACK_GREEN    "42"
  90. #define VT_COL_BACK_YELLOW   "43"
  91. #define VT_COL_BACK_BLUE     "44"
  92. #define VT_COL_BACK_MAGENTA  "45"
  93. #define VT_COL_BACK_CYAN     "46"
  94. #define VT_COL_BACK_WHITE    "47"
  95. //
  96. #define VT_GOTOXY(X,Y)  "\33["Y";"X"f"
  97. #define VT_COLOR(C)     "\33["C"m"
  98. #define VT_RESET        "\33[m"
  99. #define VT_REVERSE      "\33[7m"
  100. #define VT_UNREVERSE    "\33[27m"
  101. #define VT_BOLD         "\33[1m"
  102. #define VT_UNBOLD       "\33[22m"
  103. #define VT_BLINK        "\33[5m"
  104. #define VT_UNBLINK      "\33[25m"
  105. //
  106. #define VT_CLREOL       "\33[K"
  107. #define VT_CLRSOL       "\33[1K"
  108. #define VT_CLRLIN       "\33[2K"
  109. #define VT_CLREOS       "\33[J"
  110. #define VT_CLRSOS       "\33[1J"
  111. #define VT_CLRSCR       "\33[2J"
  112. //
  113. #define csi(X)          printf(s_csi( X ));
  114. static void vt_clear(void) {
  115.   printf("%s%s%s",VT_RESET,VT_CLRSCR,VT_GOTOXY("1","0"));
  116. }
  117. static void vt_home(void) {
  118.   printf("%s%s",VT_RESET,VT_GOTOXY("1","0"));
  119. }
  120. //
  121.  
  122.  
  123. /*
  124. #define STYLE_STATVALUES VT_COLOR(VT_COL_TEXT_BLACK)
  125. #define STYLE_STATTEXT   VT_COLOR(VT_COL_TEXT_BLUE)   
  126. */
  127. #define STYLE_STATVALUES VT_BOLD
  128. #define STYLE_STATTEXT   VT_UNBOLD
  129. #define STYLE_STATRESET  VT_UNBOLD
  130. #define NStatsBuffer     14
  131. #define MAX_LEN_INPROGRESS 40
  132.  
  133. static int use_show;
  134.  
  135. int main(int argc, char **argv) {
  136.   int ret = 0;
  137.   hts_init();
  138.  
  139.   /*
  140.   hts_htmlcheck_init         = (t_hts_htmlcheck_init)           htswrap_read("init");
  141. Log: "engine: init"
  142.  
  143.   hts_htmlcheck_uninit       = (t_hts_htmlcheck_uninit)         htswrap_read("free");
  144. Log: "engine: free"
  145.  
  146.   hts_htmlcheck_start        = (t_hts_htmlcheck_start)          htswrap_read("start");
  147. Log: "engine: start"
  148.  
  149.   hts_htmlcheck_end          = (t_hts_htmlcheck_end)            htswrap_read("end");
  150. Log: "engine: end"
  151.  
  152.   hts_htmlcheck_chopt        = (t_hts_htmlcheck_chopt)          htswrap_read("change-options");
  153. Log: "engine: change-options"
  154.  
  155.   hts_htmlcheck_preprocess   = (t_hts_htmlcheck_process)        htswrap_read("preprocess-html");
  156. Log: "preprocess-html: <url>"
  157.  
  158.   hts_htmlcheck_postprocess   = (t_hts_htmlcheck_process)        htswrap_read("postprocess-html");
  159. Log: "postprocess-html: <url>"
  160.  
  161. hts_htmlcheck              = (t_hts_htmlcheck)                htswrap_read("check-html");
  162. Log: "check-html: <url>"
  163.  
  164.   hts_htmlcheck_query        = (t_hts_htmlcheck_query)          htswrap_read("query");
  165.   hts_htmlcheck_query2       = (t_hts_htmlcheck_query2)         htswrap_read("query2");
  166.   hts_htmlcheck_query3       = (t_hts_htmlcheck_query3)         htswrap_read("query3");
  167.   hts_htmlcheck_loop         = (t_hts_htmlcheck_loop)           htswrap_read("loop");
  168.   hts_htmlcheck_check        = (t_hts_htmlcheck_check)          htswrap_read("check-link");
  169.   hts_htmlcheck_check_mime   = (t_hts_htmlcheck_check_mime)     htswrap_read("check-mime");
  170. Log: none
  171.  
  172.   hts_htmlcheck_pause        = (t_hts_htmlcheck_pause)          htswrap_read("pause");
  173. Log: "pause: <lockfile>"
  174.  
  175.   hts_htmlcheck_filesave     = (t_hts_htmlcheck_filesave)       htswrap_read("save-file");
  176.   hts_htmlcheck_filesave2    = (t_hts_htmlcheck_filesave2)      htswrap_read("save-file2");
  177.   hts_htmlcheck_linkdetected = (t_hts_htmlcheck_linkdetected)   htswrap_read("link-detected");
  178.   hts_htmlcheck_linkdetected2 = (t_hts_htmlcheck_linkdetected2)   htswrap_read("link-detected2");
  179. Log: none
  180.  
  181.   hts_htmlcheck_xfrstatus    = (t_hts_htmlcheck_xfrstatus)      htswrap_read("transfer-status");
  182. Log: 
  183.     "engine: transfer-status: link updated: <url> -> <file>"
  184.   | "engine: transfer-status: link added: <url> -> <file>"
  185.   | "engine: transfer-status: link recorded: <url> -> <file>"
  186.   | "engine: transfer-status: link link error (<errno>, '<err_msg>'): <url>"
  187.   hts_htmlcheck_savename     = (t_hts_htmlcheck_savename  )     htswrap_read("save-name");
  188. Log: 
  189.     "engine: save-name: local name: <url> -> <file>"
  190. */
  191.   
  192.   htswrap_add("init",htsshow_init);
  193.   htswrap_add("free",htsshow_uninit);
  194.   htswrap_add("start",htsshow_start);
  195.   htswrap_add("change-options",htsshow_chopt);
  196.   htswrap_add("end",htsshow_end);
  197.   htswrap_add("preprocess-html",htsshow_preprocesshtml);
  198.   htswrap_add("postprocess-html",htsshow_preprocesshtml);
  199.   htswrap_add("check-html",htsshow_checkhtml);
  200.   htswrap_add("loop",htsshow_loop);
  201.   htswrap_add("query",htsshow_query);
  202.   htswrap_add("query2",htsshow_query2);
  203.   htswrap_add("query3",htsshow_query3);
  204.   htswrap_add("check-link",htsshow_check);
  205.   htswrap_add("check-mime",htsshow_check_mime);
  206.   htswrap_add("pause",htsshow_pause);
  207.   htswrap_add("save-file",htsshow_filesave);
  208.   htswrap_add("save-file2",htsshow_filesave2);
  209.   htswrap_add("link-detected",htsshow_linkdetected);
  210.   htswrap_add("link-detected2",htsshow_linkdetected2);
  211.   htswrap_add("transfer-status",htsshow_xfrstatus);
  212.   htswrap_add("save-name",htsshow_savename);
  213.   htswrap_add("send-header", htsshow_sendheader);
  214.   htswrap_add("receive-header", htsshow_receiveheader);
  215.  
  216.   ret = hts_main(argc,argv);
  217.   if (ret) {
  218.     fprintf(stderr, "* %s\n", hts_errmsg());
  219.   }
  220.   return ret;
  221. }
  222.  
  223.  
  224. /* CALLBACK FUNCTIONS */
  225.  
  226. /* Initialize the Winsock */
  227. static void __cdecl htsshow_init(void) {
  228. #ifdef _WIN32
  229.   {
  230.     WORD   wVersionRequested;   // requested version WinSock API
  231.     WSADATA wsadata;            // Windows Sockets API data
  232.     int stat;
  233.     wVersionRequested = 0x0101;
  234.     stat = WSAStartup( wVersionRequested, &wsadata );
  235.     if (stat != 0) {
  236.       printf("Winsock not found!\n");
  237.       return;
  238.     } else if (LOBYTE(wsadata.wVersion) != 1  && HIBYTE(wsadata.wVersion) != 1) {
  239.       printf("WINSOCK.DLL does not support version 1.1\n");
  240.       WSACleanup();
  241.       return;
  242.     }
  243.   }
  244. #endif
  245.  
  246. }
  247. static void __cdecl htsshow_uninit(void) {
  248. #ifdef _WIN32
  249.   WSACleanup();
  250. #endif
  251. }
  252. static int __cdecl htsshow_start(httrackp* opt) {
  253.   use_show=0;
  254.   if (opt->verbosedisplay==2) {
  255.     use_show=1;
  256.     vt_clear();
  257.   }
  258.   return 1; 
  259. }
  260. static int __cdecl htsshow_chopt(httrackp* opt) {
  261.   return htsshow_start(opt);
  262. }
  263. static int  __cdecl htsshow_end(void) { 
  264.   return 1; 
  265. }
  266. static int __cdecl htsshow_preprocesshtml(char** html,int* len,char* url_adresse,char* url_fichier) {
  267.   return 1;
  268. }
  269. static int __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier) {
  270.   return 1;
  271. }
  272. static int __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time, hts_stat_struct* stats) {    // appelΘ α chaque boucle de HTTrack
  273.   static TStamp prev_mytime=0; /* ok */
  274.   static t_InpInfo SInfo; /* ok */
  275.   //
  276.   TStamp mytime;
  277.   long int rate=0;
  278.   char st[256];
  279.   //
  280.   int stat_written=-1;
  281.   int stat_updated=-1;
  282.   int stat_errors=-1;
  283.   int stat_warnings=-1;
  284.   int stat_infos=-1;
  285.   int nbk=-1;
  286.   LLint nb=-1;
  287.   int stat_nsocket=-1;
  288.   LLint stat_bytes=-1;
  289.   LLint stat_bytes_recv=-1;
  290.   int irate=-1;
  291.   if (stats) {
  292.     stat_written=stats->stat_files;
  293.     stat_updated=stats->stat_updated_files;
  294.     stat_errors=stats->stat_errors;
  295.     stat_warnings=stats->stat_warnings;
  296.     stat_infos=stats->stat_infos;
  297.     nbk=stats->nbk;
  298.     stat_nsocket=stats->stat_nsocket;
  299.     irate=(int)stats->rate;
  300.     nb=stats->nb;
  301.     stat_bytes=stats->nb;
  302.     stat_bytes_recv=stats->HTS_TOTAL_RECV;
  303.   }
  304.  
  305.   if (!use_show)
  306.     return 1;
  307.  
  308.   mytime=mtime_local();
  309.   if ((stat_time>0) && (stat_bytes_recv>0))
  310.     rate=(int)(stat_bytes_recv/stat_time);
  311.   else
  312.     rate=0;    // pas d'infos
  313.  
  314.   /* Infos */
  315.   if (stat_bytes>=0) SInfo.stat_bytes=stat_bytes;      // bytes
  316.   if (stat_time>=0) SInfo.stat_time=stat_time;         // time
  317.   if (lien_tot>=0) SInfo.lien_tot=lien_tot; // nb liens
  318.   if (lien_n>=0) SInfo.lien_n=lien_n;       // scanned
  319.   SInfo.stat_nsocket=stat_nsocket;          // socks
  320.   if (rate>0)  SInfo.rate=rate;                // rate
  321.   if (irate>=0) SInfo.irate=irate;             // irate
  322.   if (SInfo.irate<0) SInfo.irate=SInfo.rate;
  323.   if (nbk>=0) SInfo.stat_back=nbk;
  324.   if (stat_written>=0) SInfo.stat_written=stat_written;
  325.   if (stat_updated>=0) SInfo.stat_updated=stat_updated;
  326.   if (stat_errors>=0)  SInfo.stat_errors=stat_errors;
  327.   if (stat_warnings>=0)  SInfo.stat_warnings=stat_warnings;
  328.   if (stat_infos>=0)  SInfo.stat_infos=stat_infos;
  329.  
  330.  
  331.   if ( ((mytime - prev_mytime)>100) || ((mytime - prev_mytime)<0) ) {
  332.     prev_mytime=mytime;
  333.  
  334.     
  335.     st[0]='\0';
  336.     qsec2str(st,stat_time);
  337.     vt_home();
  338.     printf(
  339.     VT_GOTOXY("1","1")
  340.     VT_CLREOL
  341.                            STYLE_STATTEXT   "Bytes saved:"
  342.                            STYLE_STATVALUES " \t%s"
  343.                            "\t"
  344.     VT_CLREOL
  345.     VT_GOTOXY("40","1")
  346.                            STYLE_STATTEXT   "Links scanned:"
  347.                            STYLE_STATVALUES " \t%d/%d (+%d)"
  348.     VT_CLREOL"\n"VT_CLREOL
  349.     VT_GOTOXY("1","2")
  350.                            STYLE_STATTEXT   "Time:"
  351.                                             " \t"
  352.                            STYLE_STATVALUES "%s"
  353.                            "\t"
  354.     VT_CLREOL
  355.     VT_GOTOXY("40","2")
  356.                            STYLE_STATTEXT   "Files written:"
  357.                                             " \t"
  358.                            STYLE_STATVALUES "%d"
  359.     VT_CLREOL"\n"VT_CLREOL
  360.     VT_GOTOXY("1","3")
  361.                            STYLE_STATTEXT   "Transfer rate:"
  362.                                             " \t"
  363.                            STYLE_STATVALUES "%s (%s)"
  364.                            "\t"
  365.     VT_CLREOL
  366.     VT_GOTOXY("40","3")
  367.                            STYLE_STATTEXT   "Files updated:"
  368.                                             " \t"
  369.                            STYLE_STATVALUES "%d"
  370.     VT_CLREOL"\n"VT_CLREOL
  371.     VT_GOTOXY("1","4")
  372.                            STYLE_STATTEXT   "Active connections:"
  373.                                             " \t"
  374.                            STYLE_STATVALUES "%d"
  375.                            "\t"
  376.     VT_CLREOL
  377.     VT_GOTOXY("40","4")
  378.                            STYLE_STATTEXT   "Errors:"
  379.                            STYLE_STATVALUES " \t"
  380.                            STYLE_STATVALUES "%d"
  381.     VT_CLREOL"\n"
  382.     STYLE_STATRESET
  383.     ,
  384.       /* */
  385.       (char*)int2bytes(SInfo.stat_bytes),
  386.       (int)lien_n,(int)SInfo.lien_tot,(int)nbk,
  387.       (char*)st,
  388.       (int)SInfo.stat_written,
  389.       (char*)int2bytessec(SInfo.irate),(char*)int2bytessec(SInfo.rate),
  390.       (int)SInfo.stat_updated,
  391.       (int)SInfo.stat_nsocket,
  392.       (int)SInfo.stat_errors
  393.       /* */
  394.       );
  395.  
  396.     
  397.     // parcourir registre des liens
  398.     if (back_index>=0) {  // seulement si index passΘ
  399.       int j,k;
  400.       int index=0;
  401.       int ok=0;         // idem
  402.       int l;            // idem
  403.       //
  404.       t_StatsBuffer StatsBuffer[NStatsBuffer];
  405.       
  406.       {
  407.         int i;
  408.         for(i=0;i<NStatsBuffer;i++) {
  409.           strcpybuff(StatsBuffer[i].state,"");
  410.           strcpybuff(StatsBuffer[i].name,"");
  411.           strcpybuff(StatsBuffer[i].file,"");
  412.           strcpybuff(StatsBuffer[i].url_sav,"");
  413.           StatsBuffer[i].back=0;
  414.           StatsBuffer[i].size=0;
  415.           StatsBuffer[i].sizetot=0;
  416.         }
  417.       }
  418.       for(k=0;k<2;k++) {    // 0: lien en cours 1: autres liens
  419.         for(j=0;(j<3) && (index<NStatsBuffer);j++) {  // passe de prioritΘ
  420.           int _i;
  421.           for(_i=0+k;(_i< max(back_max*k,1) ) && (index<NStatsBuffer);_i++) {  // no lien
  422.             int i=(back_index+_i)%back_max;    // commencer par le "premier" (l'actuel)
  423.             if (back[i].status>=0) {     // signifie "lien actif"
  424.               // int ok=0;  // OPTI
  425.               ok=0;
  426.               switch(j) {
  427.               case 0:     // prioritaire
  428.                 if ((back[i].status>0) && (back[i].status<99)) {
  429.                   strcpybuff(StatsBuffer[index].state,"receive"); ok=1;
  430.                 }
  431.                 break;
  432.               case 1:
  433.                 if (back[i].status==99) {
  434.                   strcpybuff(StatsBuffer[index].state,"request"); ok=1;
  435.                 }
  436.                 else if (back[i].status==100) {
  437.                   strcpybuff(StatsBuffer[index].state,"connect"); ok=1;
  438.                 }
  439.                 else if (back[i].status==101) {
  440.                   strcpybuff(StatsBuffer[index].state,"search"); ok=1;
  441.                 }
  442.                 else if (back[i].status==1000) {    // ohh le beau ftp
  443.                   sprintf(StatsBuffer[index].state,"ftp: %s",back[i].info); ok=1;
  444.                 }
  445.                 break;
  446.               default:
  447.                 if (back[i].status==0) {  // prΩt
  448.                   if ((back[i].r.statuscode==200)) {
  449.                     strcpybuff(StatsBuffer[index].state,"ready"); ok=1;
  450.                   }
  451.                   else if ((back[i].r.statuscode>=100) && (back[i].r.statuscode<=599)) {
  452.                     char tempo[256]; tempo[0]='\0';
  453.                     infostatuscode(tempo,back[i].r.statuscode);
  454.                     strcpybuff(StatsBuffer[index].state,tempo); ok=1;
  455.                   }
  456.                   else {
  457.                     strcpybuff(StatsBuffer[index].state,"error"); ok=1;
  458.                   }
  459.                 }
  460.                 break;
  461.               }
  462.               
  463.               if (ok) {
  464.                 char BIGSTK s[HTS_URLMAXSIZE*2];
  465.                 //
  466.                 StatsBuffer[index].back=i;        // index pour + d'infos
  467.                 //
  468.                 s[0]='\0';
  469.                 strcpybuff(StatsBuffer[index].url_sav,back[i].url_sav);   // pour cancel
  470.                 if (strcmp(back[i].url_adr,"file://"))
  471.                   strcatbuff(s,back[i].url_adr);
  472.                 else
  473.                   strcatbuff(s,"localhost");
  474.                 if (back[i].url_fil[0]!='/')
  475.                   strcatbuff(s,"/");
  476.                 strcatbuff(s,back[i].url_fil);
  477.                 
  478.                 StatsBuffer[index].file[0]='\0';
  479.                 {
  480.                   char* a=strrchr(s,'/');
  481.                   if (a) {
  482.                     strncatbuff(StatsBuffer[index].file,a,200);
  483.                     *a='\0';
  484.                   }
  485.                 }
  486.                 
  487.                 if ((l=strlen(s))<MAX_LEN_INPROGRESS)
  488.                   strcpybuff(StatsBuffer[index].name,s);
  489.                 else {
  490.                   // couper
  491.                   StatsBuffer[index].name[0]='\0';
  492.                   strncatbuff(StatsBuffer[index].name,s,MAX_LEN_INPROGRESS/2-2);
  493.                   strcatbuff(StatsBuffer[index].name,"...");
  494.                   strcatbuff(StatsBuffer[index].name,s+l-MAX_LEN_INPROGRESS/2+2);
  495.                 }
  496.                                
  497.                 if (back[i].r.totalsize>0) {  // taille prΘdΘfinie
  498.                   StatsBuffer[index].sizetot=back[i].r.totalsize;
  499.                   StatsBuffer[index].size=back[i].r.size;
  500.                 } else {  // pas de taille prΘdΘfinie
  501.                   if (back[i].status==0) {  // prΩt
  502.                     StatsBuffer[index].sizetot=back[i].r.size;
  503.                     StatsBuffer[index].size=back[i].r.size;
  504.                   } else {
  505.                     StatsBuffer[index].sizetot=8192;
  506.                     StatsBuffer[index].size=(back[i].r.size % 8192);
  507.                   }
  508.                 }
  509.                 index++;
  510.               }
  511.             }
  512.           }
  513.         }
  514.       }
  515.  
  516.       /* LF */
  517.       printf("%s\n",VT_CLREOL);
  518.  
  519.       /* Display current job */
  520.       {
  521.         int parsing=0;
  522.         printf("Current job: ");
  523.         if (!(parsing=hts_is_parsing(-1)))
  524.           printf("receiving files");
  525.         else {
  526.           switch(hts_is_testing()) {
  527.           case 0:
  528.             printf("parsing HTML file (%d%%)",parsing);
  529.             break;
  530.           case 1:
  531.             printf("parsing HTML file: testing links (%d%%)",parsing);
  532.             break;
  533.           case 2:
  534.             printf("purging files");
  535.             break;
  536.           case 3:
  537.             printf("loading cache");
  538.             break;
  539.           case 4:
  540.             printf("waiting (scheduler)");
  541.             break;
  542.           case 5:
  543.             printf("waiting (throttle)");
  544.             break;
  545.           }
  546.         }
  547.         printf("%s\n",VT_CLREOL);
  548.       }
  549.       
  550.       /* Display background jobs */
  551.       {
  552.         int i;
  553.         for(i=0;i<NStatsBuffer;i++) {
  554.           if (strnotempty(StatsBuffer[i].state)) {
  555.             printf(VT_CLREOL" %s - \t%s%s \t%s / \t%s",
  556.               StatsBuffer[i].state,
  557.               StatsBuffer[i].name,
  558.               StatsBuffer[i].file,
  559.               int2bytes(StatsBuffer[i].size),
  560.               int2bytes(StatsBuffer[i].sizetot)
  561.               );
  562.           }
  563.           printf("%s\n",VT_CLREOL);
  564.         }
  565.       }
  566.  
  567.  
  568.     }
  569.  
  570.   }
  571.  
  572.  
  573.  
  574.   return 1;
  575. }
  576. static char* __cdecl htsshow_query(char* question) {
  577.   static char s[12]=""; /* ok */
  578.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  579.   io_flush; linput(stdin,s,4);
  580.   return s;
  581. }
  582. static char* __cdecl htsshow_query2(char* question) {
  583.   static char s[12]=""; /* ok */
  584.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  585.   io_flush; linput(stdin,s,4);
  586.   return s;
  587. }
  588. static char* __cdecl htsshow_query3(char* question) {
  589.   static char line[256]; /* ok */
  590.   do {
  591.     io_flush; linput(stdin,line,206);
  592.   } while(!strnotempty(line));
  593.   printf("ok..\n");
  594.   return line;
  595. }
  596. static int __cdecl htsshow_check(char* adr,char* fil,int status) {
  597.   return -1;
  598. }
  599. static int __cdecl htsshow_check_mime(char* adr,char* fil,char* mime,int status) {
  600.   return -1;
  601. }
  602. static void __cdecl htsshow_pause(char* lockfile) {
  603.   while (fexist(lockfile)) {
  604.     Sleep(1000);
  605.   }
  606. }
  607. static void __cdecl htsshow_filesave(char* file) {
  608. }
  609. static void __cdecl htsshow_filesave2(char* adr, char* fil, char* save, int is_new, int is_modified,int not_updated) {
  610. }
  611. static int __cdecl htsshow_linkdetected(char* link) {
  612.   return 1;
  613. }
  614. static int __cdecl htsshow_linkdetected2(char* link, char* start_tag) {
  615.   return 1;
  616. }
  617. static int __cdecl htsshow_xfrstatus(lien_back* back) {
  618.   return 1;
  619. }
  620. static int __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save) {
  621.   return 1;
  622. }
  623. static int __cdecl htsshow_sendheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* outgoing) {
  624.   return 1;
  625. }
  626. static int __cdecl htsshow_receiveheader(char* buff, char* adr, char* fil, char* referer_adr, char* referer_fil, htsblk* incoming) {
  627.   return 1;
  628. }
  629.  
  630. /* *** Various functions *** */
  631.  
  632.  
  633. static int fexist(char* s) {
  634.   struct stat st;
  635.   memset(&st, 0, sizeof(st));
  636.   if (stat(s, &st) == 0) {
  637.     if (S_ISREG(st.st_mode)) {
  638.       return 1;
  639.     }
  640.   }
  641.   return 0;
  642.  
  643. static int linput(FILE* fp,char* s,int max) {
  644.   int c;
  645.   int j=0;
  646.   do {
  647.     c=fgetc(fp);
  648.     if (c!=EOF) {
  649.       switch(c) {
  650.         case 13: break;  // sauter CR
  651.         case 10: c=-1; break;
  652.         case 9: case 12: break;  // sauter ces caractΦres
  653.         default: s[j++]=(char) c; break;
  654.       }
  655.     }
  656.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  657.   s[j]='\0';
  658.   return j;
  659. }
  660.  
  661. #endif
  662.